home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / syscall / sun3.md / vmStubs.s < prev   
Encoding:
Text File  |  1990-07-27  |  1.1 KB  |  34 lines

  1. /*
  2.  *
  3.  * vmStubs.s --
  4.  *
  5.  *     Stubs for the Vm_ system calls.
  6.  *
  7.  * Copyright 1988 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * rcs = $Header: /sprite/src/lib/c/syscall/sun3.md/RCS/vmStubs.s,v 1.5 90/07/26 18:52:13 shirriff Exp $ SPRITE (Berkeley)
  17.  *
  18.  */
  19. #include "userSysCallInt.h"
  20.  
  21. SYS_CALL(Vm_Cmd, SYS_VM_CMD)
  22. SYS_CALL(Vm_GetSegInfo, SYS_VM_GETSEGINFO)
  23. SYS_CALL(Vm_PageSize, SYS_VM_PAGESIZE)
  24. SYS_CALL(Vm_CreateVA, SYS_VM_CREATEVA)
  25. SYS_CALL(Vm_DestroyVA, SYS_VM_DESTROYVA)
  26. SYS_CALL(Vm_MapKernelIntoUser, SYS_VM_MAPKERNELINTOUSER)
  27. SYS_CALL(Vm_Mmap, SYS_VM_MMAP)
  28. SYS_CALL(Vm_Munmap, SYS_VM_MUNMAP)
  29. SYS_CALL(Vm_Msync, SYS_VM_MSYNC)
  30. SYS_CALL(Vm_Mlock, SYS_VM_MLOCK)
  31. SYS_CALL(Vm_Munlock, SYS_VM_MUNLOCK)
  32. SYS_CALL(Vm_Mincore, SYS_VM_MINCORE)
  33. SYS_CALL(Vm_Mprotect, SYS_VM_MPROTECT)
  34.